func go/types.hasBreak
11 uses
go/types (current package)
return.go#L71: if s.Cond == nil && !hasBreak(s.Body, label, true) {
return.go#L110: func hasBreak(s ast.Stmt, label string, implicit bool) bool {
return.go#L121: return hasBreak(s.Stmt, label, implicit)
return.go#L137: if hasBreak(s.Body, label, implicit) ||
return.go#L138: s.Else != nil && hasBreak(s.Else, label, implicit) {
return.go#L146: if label != "" && hasBreak(s.Body, label, false) {
return.go#L151: if label != "" && hasBreak(s.Body, label, false) {
return.go#L159: if label != "" && hasBreak(s.Body, label, false) {
return.go#L164: if label != "" && hasBreak(s.Body, label, false) {
return.go#L169: if label != "" && hasBreak(s.Body, label, false) {
return.go#L179: if hasBreak(s, label, implicit) {